Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
IccColorLookupTable16Bit Constructor(Byte[],Byte,UInt16[])
See Also 
Leadtools.ColorConversion Namespace > IccColorLookupTable16Bit Class > IccColorLookupTable16Bit Constructor : IccColorLookupTable16Bit Constructor(Byte[],Byte,UInt16[])



numberOfGridPoints
Array that contains the number of grid points in each dimension.
percision
Precision of data elements in bytes. Must be 02h.
data
Buffer of color lookup table data points. The size of each element is 2 byte. (Hence the "16Bit" in the class name).
Initializes a new IccColorLookupTable16Bit with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal numberOfGridPoints() As Byte, _
   ByVal percision As Byte, _
   ByVal data() As UShort _
)
Visual Basic (Usage)Copy Code
Dim numberOfGridPoints() As Byte
Dim percision As Byte
Dim data() As UShort
 
Dim instance As IccColorLookupTable16Bit(numberOfGridPoints, percision, data)
C# 
public IccColorLookupTable16Bit( 
   byte[] numberOfGridPoints,
   byte percision,
   ushort[] data
)
C++/CLI 
public:
IccColorLookupTable16Bit( 
   array<byte>^ numberOfGridPoints,
   byte percision,
   array<ushort>^ data
)

Parameters

numberOfGridPoints
Array that contains the number of grid points in each dimension.
percision
Precision of data elements in bytes. Must be 02h.
data
Buffer of color lookup table data points. The size of each element is 2 byte. (Hence the "16Bit" in the class name).

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also